home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 5 (Internal Edition) / Apple R&P Lib Internal v5.0.iso / 6-Developer Demos / Developer Demos-Ed. / Macintosh School® CD-ROM Demo / Macintosh SchoolÆ CD-ROM Demo / background_13877.txt < prev    next >
Text File  |  1990-08-14  |  44KB  |  2,063 lines

  1. -- background: 13877 from stack: in
  2. -- bmap block id: 2146
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: CSL Attendance
  6. ----- HyperTalk script -----
  7. on openBackground
  8.   installMenuBar 1020,1021,1022,1023,1024,1025,1026,1027
  9.   enableMenuItem 1021,3,false
  10.   get the long date
  11.   if ((word 2 of it) & (item 3 of it)) <> background field 2 then
  12.     drawCalendar
  13.   end if
  14.   get the date
  15.   convert it to dateItems
  16.   set the loc of bg button "Thumb" to ((17*item 2 of it)+246),268
  17.   set the loc of bg button "Hilite" to the loc of bg button getButton()
  18. end openBackground
  19.  
  20. on doMenu menuItem
  21.   lock screen
  22.   if menuItem contains "About" then
  23.     restoreMenuBar
  24.     go to card short name of this background of background "About"
  25.     unlock screen with zoom close
  26.   else if menuItem is "Home" then
  27.     restoreMenuBar
  28.     go home
  29.   else if menuItem contains "Quit" then
  30.     restoreMenuBar false
  31.     go to card "Mac School¬Æ Shell"
  32.     unlock screen with zoom close
  33.   else if menuItem is "Report Manager" OR menuItem is "Report Cards" then
  34.     restoreMenuBar false
  35.     go to background menuItem
  36.     unlock screen with zoom open
  37.   else if menuItem is "Open Attendance Window" then
  38.     go to background "CSL Attendance Window"
  39.   end if
  40.   unlock screen
  41. end doMenu
  42.  
  43. on mouseUp
  44.   if "button" is not in name of target then exit mouseUp
  45.   if the short name of target is "Hilite" then
  46.     lock screen
  47.     go to next background
  48.     unlock screen
  49.   else if "button" is not in short name of target AND id of target <= 126 AND icon of target is 0 then
  50.     show bg button "Hilite" at the loc of target
  51.   else if id of target <= 126 then beep
  52. end mouseUp
  53.  
  54. on drawCalendar offset
  55.   set cursor to watch
  56.   lock screen
  57.   if offset is not empty then
  58.     get background field "Display Date"
  59.     add offset to item 2 of it
  60.     convert it to long date
  61.     convert it to dateItems
  62.   else
  63.     get the date
  64.     convert it to dateItems
  65.   end if
  66.   put it into background field "Display Date"
  67.   if item 1 of it mod 4 is 0 then
  68.     put true into leapYear
  69.   else
  70.     put false into leapYear
  71.   end if
  72.   if item 2 of it is 1 then
  73.     subtract 1 from item 1 of it
  74.     put 12 into item 2 of it
  75.   else
  76.     subtract 1 from item 2 of it
  77.   end if
  78.   put 1 into item 3 of it
  79.   repeat with monthNum = 1 to 3
  80.     convert it to long date
  81.     put (word 2 of it) & (item 3 of it) into background field monthNum
  82.     put word 2 of it into month
  83.     convert it to dateItems
  84.     put item 7 of it into theStart
  85.     if month = "April" or month = "June" or month = "September" or month = "November" then
  86.       put 30 into monthDays
  87.     end if
  88.     if month = "February" then
  89.       if leapYear is true then
  90.         put 29 into monthDays
  91.       else
  92.         put 28 into monthDays
  93.       end if
  94.     end if
  95.     if month = "January" or month = "March" or month = "May" or month = "July" or month = "August" or month = "October" or month = "December" then
  96.       put 31 into monthDays
  97.     end if
  98.     repeat with index = 1 to (theStart - 1)
  99.       set name of background button (index + (42*(monthNum-1))) to empty
  100.     end repeat
  101.     repeat with index = 1 to monthDays
  102.       set name of background button (index + theStart - 1 + (42*(monthNum-1))) to index
  103.     end repeat
  104.     repeat with index = (monthDays + theStart) to 37
  105.       set name of background button (index + (42*(monthNum-1))) to empty
  106.     end repeat
  107.     if item 2 of it is 12 then
  108.       add 1 to item 1 of it
  109.       put 1 into item 2 of it
  110.     else
  111.       add 1 to item 2 of it
  112.     end if
  113.   end repeat
  114.   unlock screen
  115. end drawCalendar
  116.  
  117.  
  118. -- part 1 (button)
  119. -- low flags: 00
  120. -- high flags: 8000
  121. -- rect: left=52 top=142 right=159 bottom=69
  122. -- title width / last selected line: 0
  123. -- icon id / first selected line: 0 / 0
  124. -- text alignment: 1
  125. -- font id: 0
  126. -- text size: 12
  127. -- style flags: 0
  128. -- line height: 16
  129. -- part name: 
  130.  
  131.  
  132. -- part 2 (button)
  133. -- low flags: 00
  134. -- high flags: 8000
  135. -- rect: left=72 top=142 right=159 bottom=89
  136. -- title width / last selected line: 0
  137. -- icon id / first selected line: 0 / 0
  138. -- text alignment: 1
  139. -- font id: 0
  140. -- text size: 12
  141. -- style flags: 0
  142. -- line height: 16
  143. -- part name: 
  144. ----- HyperTalk script -----
  145.  
  146.  
  147.  
  148.  
  149. -- part 3 (button)
  150. -- low flags: 00
  151. -- high flags: 8000
  152. -- rect: left=92 top=142 right=159 bottom=109
  153. -- title width / last selected line: 0
  154. -- icon id / first selected line: 0 / 0
  155. -- text alignment: 1
  156. -- font id: 0
  157. -- text size: 12
  158. -- style flags: 0
  159. -- line height: 16
  160. -- part name: 1
  161.  
  162.  
  163. -- part 4 (button)
  164. -- low flags: 00
  165. -- high flags: 8000
  166. -- rect: left=112 top=142 right=159 bottom=129
  167. -- title width / last selected line: 0
  168. -- icon id / first selected line: 0 / 0
  169. -- text alignment: 1
  170. -- font id: 0
  171. -- text size: 12
  172. -- style flags: 0
  173. -- line height: 16
  174. -- part name: 2
  175.  
  176.  
  177. -- part 5 (button)
  178. -- low flags: 00
  179. -- high flags: 8000
  180. -- rect: left=132 top=142 right=159 bottom=149
  181. -- title width / last selected line: 0
  182. -- icon id / first selected line: 0 / 0
  183. -- text alignment: 1
  184. -- font id: 0
  185. -- text size: 12
  186. -- style flags: 0
  187. -- line height: 16
  188. -- part name: 3
  189.  
  190.  
  191. -- part 6 (button)
  192. -- low flags: 00
  193. -- high flags: 8000
  194. -- rect: left=152 top=142 right=159 bottom=169
  195. -- title width / last selected line: 0
  196. -- icon id / first selected line: 0 / 0
  197. -- text alignment: 1
  198. -- font id: 0
  199. -- text size: 12
  200. -- style flags: 0
  201. -- line height: 16
  202. -- part name: 4
  203.  
  204.  
  205. -- part 7 (button)
  206. -- low flags: 00
  207. -- high flags: 8000
  208. -- rect: left=172 top=142 right=159 bottom=189
  209. -- title width / last selected line: 0
  210. -- icon id / first selected line: 0 / 0
  211. -- text alignment: 1
  212. -- font id: 0
  213. -- text size: 12
  214. -- style flags: 0
  215. -- line height: 16
  216. -- part name: 5
  217.  
  218.  
  219. -- part 8 (button)
  220. -- low flags: 00
  221. -- high flags: 8000
  222. -- rect: left=52 top=162 right=179 bottom=69
  223. -- title width / last selected line: 0
  224. -- icon id / first selected line: 0 / 0
  225. -- text alignment: 1
  226. -- font id: 0
  227. -- text size: 12
  228. -- style flags: 0
  229. -- line height: 16
  230. -- part name: 6
  231.  
  232.  
  233. -- part 9 (button)
  234. -- low flags: 00
  235. -- high flags: 8000
  236. -- rect: left=72 top=162 right=179 bottom=89
  237. -- title width / last selected line: 0
  238. -- icon id / first selected line: 0 / 0
  239. -- text alignment: 1
  240. -- font id: 0
  241. -- text size: 12
  242. -- style flags: 0
  243. -- line height: 16
  244. -- part name: 7
  245.  
  246.  
  247. -- part 10 (button)
  248. -- low flags: 00
  249. -- high flags: 8000
  250. -- rect: left=92 top=162 right=179 bottom=109
  251. -- title width / last selected line: 0
  252. -- icon id / first selected line: 0 / 0
  253. -- text alignment: 1
  254. -- font id: 0
  255. -- text size: 12
  256. -- style flags: 0
  257. -- line height: 16
  258. -- part name: 8
  259.  
  260.  
  261. -- part 11 (button)
  262. -- low flags: 00
  263. -- high flags: 8000
  264. -- rect: left=112 top=162 right=179 bottom=129
  265. -- title width / last selected line: 0
  266. -- icon id / first selected line: 0 / 0
  267. -- text alignment: 1
  268. -- font id: 0
  269. -- text size: 12
  270. -- style flags: 0
  271. -- line height: 16
  272. -- part name: 9
  273.  
  274.  
  275. -- part 12 (button)
  276. -- low flags: 00
  277. -- high flags: 8000
  278. -- rect: left=132 top=162 right=179 bottom=149
  279. -- title width / last selected line: 0
  280. -- icon id / first selected line: 0 / 0
  281. -- text alignment: 1
  282. -- font id: 0
  283. -- text size: 12
  284. -- style flags: 0
  285. -- line height: 16
  286. -- part name: 10
  287.  
  288.  
  289. -- part 13 (button)
  290. -- low flags: 00
  291. -- high flags: 8000
  292. -- rect: left=152 top=162 right=179 bottom=169
  293. -- title width / last selected line: 0
  294. -- icon id / first selected line: 0 / 0
  295. -- text alignment: 1
  296. -- font id: 0
  297. -- text size: 12
  298. -- style flags: 0
  299. -- line height: 16
  300. -- part name: 11
  301.  
  302.  
  303. -- part 14 (button)
  304. -- low flags: 00
  305. -- high flags: 8000
  306. -- rect: left=172 top=162 right=179 bottom=189
  307. -- title width / last selected line: 0
  308. -- icon id / first selected line: 0 / 0
  309. -- text alignment: 1
  310. -- font id: 0
  311. -- text size: 12
  312. -- style flags: 0
  313. -- line height: 16
  314. -- part name: 12
  315.  
  316.  
  317. -- part 15 (button)
  318. -- low flags: 00
  319. -- high flags: 8000
  320. -- rect: left=52 top=182 right=199 bottom=69
  321. -- title width / last selected line: 0
  322. -- icon id / first selected line: 0 / 0
  323. -- text alignment: 1
  324. -- font id: 0
  325. -- text size: 12
  326. -- style flags: 0
  327. -- line height: 16
  328. -- part name: 13
  329.  
  330.  
  331. -- part 16 (button)
  332. -- low flags: 00
  333. -- high flags: 8000
  334. -- rect: left=72 top=182 right=199 bottom=89
  335. -- title width / last selected line: 0
  336. -- icon id / first selected line: 0 / 0
  337. -- text alignment: 1
  338. -- font id: 0
  339. -- text size: 12
  340. -- style flags: 0
  341. -- line height: 16
  342. -- part name: 14
  343.  
  344.  
  345. -- part 17 (button)
  346. -- low flags: 00
  347. -- high flags: 8000
  348. -- rect: left=92 top=182 right=199 bottom=109
  349. -- title width / last selected line: 0
  350. -- icon id / first selected line: 0 / 0
  351. -- text alignment: 1
  352. -- font id: 0
  353. -- text size: 12
  354. -- style flags: 0
  355. -- line height: 16
  356. -- part name: 15
  357.  
  358.  
  359. -- part 18 (button)
  360. -- low flags: 00
  361. -- high flags: 8000
  362. -- rect: left=112 top=182 right=199 bottom=129
  363. -- title width / last selected line: 0
  364. -- icon id / first selected line: 0 / 0
  365. -- text alignment: 1
  366. -- font id: 0
  367. -- text size: 12
  368. -- style flags: 0
  369. -- line height: 16
  370. -- part name: 16
  371.  
  372.  
  373. -- part 19 (button)
  374. -- low flags: 00
  375. -- high flags: 8000
  376. -- rect: left=132 top=182 right=199 bottom=149
  377. -- title width / last selected line: 0
  378. -- icon id / first selected line: 0 / 0
  379. -- text alignment: 1
  380. -- font id: 0
  381. -- text size: 12
  382. -- style flags: 0
  383. -- line height: 16
  384. -- part name: 17
  385.  
  386.  
  387. -- part 20 (button)
  388. -- low flags: 00
  389. -- high flags: 8000
  390. -- rect: left=152 top=182 right=199 bottom=169
  391. -- title width / last selected line: 0
  392. -- icon id / first selected line: 0 / 0
  393. -- text alignment: 1
  394. -- font id: 0
  395. -- text size: 12
  396. -- style flags: 0
  397. -- line height: 16
  398. -- part name: 18
  399.  
  400.  
  401. -- part 21 (button)
  402. -- low flags: 00
  403. -- high flags: 8000
  404. -- rect: left=172 top=182 right=199 bottom=189
  405. -- title width / last selected line: 0
  406. -- icon id / first selected line: 0 / 0
  407. -- text alignment: 1
  408. -- font id: 0
  409. -- text size: 12
  410. -- style flags: 0
  411. -- line height: 16
  412. -- part name: 19
  413.  
  414.  
  415. -- part 22 (button)
  416. -- low flags: 00
  417. -- high flags: 8000
  418. -- rect: left=52 top=202 right=219 bottom=69
  419. -- title width / last selected line: 0
  420. -- icon id / first selected line: 0 / 0
  421. -- text alignment: 1
  422. -- font id: 0
  423. -- text size: 12
  424. -- style flags: 0
  425. -- line height: 16
  426. -- part name: 20
  427.  
  428.  
  429. -- part 23 (button)
  430. -- low flags: 00
  431. -- high flags: 8000
  432. -- rect: left=72 top=202 right=219 bottom=89
  433. -- title width / last selected line: 0
  434. -- icon id / first selected line: 0 / 0
  435. -- text alignment: 1
  436. -- font id: 0
  437. -- text size: 12
  438. -- style flags: 0
  439. -- line height: 16
  440. -- part name: 21
  441.  
  442.  
  443. -- part 24 (button)
  444. -- low flags: 00
  445. -- high flags: 8000
  446. -- rect: left=92 top=202 right=219 bottom=109
  447. -- title width / last selected line: 0
  448. -- icon id / first selected line: 0 / 0
  449. -- text alignment: 1
  450. -- font id: 0
  451. -- text size: 12
  452. -- style flags: 0
  453. -- line height: 16
  454. -- part name: 22
  455.  
  456.  
  457. -- part 25 (button)
  458. -- low flags: 00
  459. -- high flags: 8000
  460. -- rect: left=112 top=202 right=219 bottom=129
  461. -- title width / last selected line: 0
  462. -- icon id / first selected line: 0 / 0
  463. -- text alignment: 1
  464. -- font id: 0
  465. -- text size: 12
  466. -- style flags: 0
  467. -- line height: 16
  468. -- part name: 23
  469.  
  470.  
  471. -- part 26 (button)
  472. -- low flags: 00
  473. -- high flags: 8000
  474. -- rect: left=132 top=202 right=219 bottom=149
  475. -- title width / last selected line: 0
  476. -- icon id / first selected line: 0 / 0
  477. -- text alignment: 1
  478. -- font id: 0
  479. -- text size: 12
  480. -- style flags: 0
  481. -- line height: 16
  482. -- part name: 24
  483.  
  484.  
  485. -- part 27 (button)
  486. -- low flags: 00
  487. -- high flags: 8000
  488. -- rect: left=152 top=202 right=219 bottom=169
  489. -- title width / last selected line: 0
  490. -- icon id / first selected line: 0 / 0
  491. -- text alignment: 1
  492. -- font id: 0
  493. -- text size: 12
  494. -- style flags: 0
  495. -- line height: 16
  496. -- part name: 25
  497.  
  498.  
  499. -- part 28 (button)
  500. -- low flags: 00
  501. -- high flags: 8000
  502. -- rect: left=172 top=202 right=219 bottom=189
  503. -- title width / last selected line: 0
  504. -- icon id / first selected line: 0 / 0
  505. -- text alignment: 1
  506. -- font id: 0
  507. -- text size: 12
  508. -- style flags: 0
  509. -- line height: 16
  510. -- part name: 26
  511.  
  512.  
  513. -- part 29 (button)
  514. -- low flags: 00
  515. -- high flags: 8000
  516. -- rect: left=52 top=222 right=239 bottom=69
  517. -- title width / last selected line: 0
  518. -- icon id / first selected line: 0 / 0
  519. -- text alignment: 1
  520. -- font id: 0
  521. -- text size: 12
  522. -- style flags: 0
  523. -- line height: 16
  524. -- part name: 27
  525.  
  526.  
  527. -- part 30 (button)
  528. -- low flags: 00
  529. -- high flags: 8000
  530. -- rect: left=72 top=222 right=239 bottom=89
  531. -- title width / last selected line: 0
  532. -- icon id / first selected line: 0 / 0
  533. -- text alignment: 1
  534. -- font id: 0
  535. -- text size: 12
  536. -- style flags: 0
  537. -- line height: 16
  538. -- part name: 28
  539.  
  540.  
  541. -- part 31 (button)
  542. -- low flags: 00
  543. -- high flags: 8000
  544. -- rect: left=92 top=222 right=239 bottom=109
  545. -- title width / last selected line: 0
  546. -- icon id / first selected line: 0 / 0
  547. -- text alignment: 1
  548. -- font id: 0
  549. -- text size: 12
  550. -- style flags: 0
  551. -- line height: 16
  552. -- part name: 29
  553.  
  554.  
  555. -- part 32 (button)
  556. -- low flags: 00
  557. -- high flags: 8000
  558. -- rect: left=112 top=222 right=239 bottom=129
  559. -- title width / last selected line: 0
  560. -- icon id / first selected line: 0 / 0
  561. -- text alignment: 1
  562. -- font id: 0
  563. -- text size: 12
  564. -- style flags: 0
  565. -- line height: 16
  566. -- part name: 30
  567.  
  568.  
  569. -- part 33 (button)
  570. -- low flags: 00
  571. -- high flags: 8000
  572. -- rect: left=132 top=222 right=239 bottom=149
  573. -- title width / last selected line: 0
  574. -- icon id / first selected line: 0 / 0
  575. -- text alignment: 1
  576. -- font id: 0
  577. -- text size: 12
  578. -- style flags: 0
  579. -- line height: 16
  580. -- part name: 31
  581.  
  582.  
  583. -- part 34 (button)
  584. -- low flags: 00
  585. -- high flags: 8000
  586. -- rect: left=152 top=222 right=239 bottom=169
  587. -- title width / last selected line: 0
  588. -- icon id / first selected line: 0 / 0
  589. -- text alignment: 1
  590. -- font id: 0
  591. -- text size: 12
  592. -- style flags: 0
  593. -- line height: 16
  594. -- part name: 
  595.  
  596.  
  597. -- part 35 (button)
  598. -- low flags: 00
  599. -- high flags: 8000
  600. -- rect: left=172 top=222 right=239 bottom=189
  601. -- title width / last selected line: 0
  602. -- icon id / first selected line: 0 / 0
  603. -- text alignment: 1
  604. -- font id: 0
  605. -- text size: 12
  606. -- style flags: 0
  607. -- line height: 16
  608. -- part name: 
  609.  
  610.  
  611. -- part 36 (button)
  612. -- low flags: 00
  613. -- high flags: 8000
  614. -- rect: left=52 top=242 right=259 bottom=69
  615. -- title width / last selected line: 0
  616. -- icon id / first selected line: 0 / 0
  617. -- text alignment: 1
  618. -- font id: 0
  619. -- text size: 12
  620. -- style flags: 0
  621. -- line height: 16
  622. -- part name: 
  623.  
  624.  
  625. -- part 37 (button)
  626. -- low flags: 00
  627. -- high flags: 8000
  628. -- rect: left=72 top=242 right=259 bottom=89
  629. -- title width / last selected line: 0
  630. -- icon id / first selected line: 0 / 0
  631. -- text alignment: 1
  632. -- font id: 0
  633. -- text size: 12
  634. -- style flags: 0
  635. -- line height: 16
  636. -- part name: 
  637.  
  638.  
  639. -- part 38 (button)
  640. -- low flags: 00
  641. -- high flags: 8000
  642. -- rect: left=92 top=242 right=259 bottom=109
  643. -- title width / last selected line: 0
  644. -- icon id / first selected line: 0 / 0
  645. -- text alignment: 1
  646. -- font id: 0
  647. -- text size: 12
  648. -- style flags: 0
  649. -- line height: 16
  650. -- part name: 
  651.  
  652.  
  653. -- part 39 (button)
  654. -- low flags: 00
  655. -- high flags: 8000
  656. -- rect: left=112 top=242 right=259 bottom=129
  657. -- title width / last selected line: 0
  658. -- icon id / first selected line: 0 / 0
  659. -- text alignment: 1
  660. -- font id: 0
  661. -- text size: 12
  662. -- style flags: 0
  663. -- line height: 16
  664. -- part name: 
  665.  
  666.  
  667. -- part 40 (button)
  668. -- low flags: 00
  669. -- high flags: 8000
  670. -- rect: left=132 top=242 right=259 bottom=149
  671. -- title width / last selected line: 0
  672. -- icon id / first selected line: 0 / 0
  673. -- text alignment: 1
  674. -- font id: 0
  675. -- text size: 12
  676. -- style flags: 0
  677. -- line height: 16
  678. -- part name: 
  679.  
  680.  
  681. -- part 41 (button)
  682. -- low flags: 00
  683. -- high flags: 8000
  684. -- rect: left=152 top=242 right=259 bottom=169
  685. -- title width / last selected line: 0
  686. -- icon id / first selected line: 0 / 0
  687. -- text alignment: 1
  688. -- font id: 0
  689. -- text size: 12
  690. -- style flags: 0
  691. -- line height: 16
  692. -- part name: 
  693.  
  694.  
  695. -- part 42 (button)
  696. -- low flags: 00
  697. -- high flags: 8000
  698. -- rect: left=172 top=242 right=259 bottom=189
  699. -- title width / last selected line: 0
  700. -- icon id / first selected line: 0 / 0
  701. -- text alignment: 1
  702. -- font id: 0
  703. -- text size: 12
  704. -- style flags: 0
  705. -- line height: 16
  706. -- part name: 
  707.  
  708.  
  709. -- part 43 (button)
  710. -- low flags: 00
  711. -- high flags: 8000
  712. -- rect: left=193 top=142 right=159 bottom=210
  713. -- title width / last selected line: 0
  714. -- icon id / first selected line: 0 / 0
  715. -- text alignment: 1
  716. -- font id: 0
  717. -- text size: 12
  718. -- style flags: 0
  719. -- line height: 16
  720. -- part name: 
  721.  
  722.  
  723. -- part 44 (button)
  724. -- low flags: 00
  725. -- high flags: 8000
  726. -- rect: left=213 top=142 right=159 bottom=230
  727. -- title width / last selected line: 0
  728. -- icon id / first selected line: 0 / 0
  729. -- text alignment: 1
  730. -- font id: 0
  731. -- text size: 12
  732. -- style flags: 0
  733. -- line height: 16
  734. -- part name: 
  735.  
  736.  
  737. -- part 45 (button)
  738. -- low flags: 00
  739. -- high flags: 8000
  740. -- rect: left=233 top=142 right=159 bottom=250
  741. -- title width / last selected line: 0
  742. -- icon id / first selected line: 0 / 0
  743. -- text alignment: 1
  744. -- font id: 0
  745. -- text size: 12
  746. -- style flags: 0
  747. -- line height: 16
  748. -- part name: 
  749.  
  750.  
  751. -- part 46 (button)
  752. -- low flags: 00
  753. -- high flags: 8000
  754. -- rect: left=253 top=142 right=159 bottom=270
  755. -- title width / last selected line: 0
  756. -- icon id / first selected line: 0 / 0
  757. -- text alignment: 1
  758. -- font id: 0
  759. -- text size: 12
  760. -- style flags: 0
  761. -- line height: 16
  762. -- part name: 
  763.  
  764.  
  765. -- part 47 (button)
  766. -- low flags: 00
  767. -- high flags: 8000
  768. -- rect: left=273 top=142 right=159 bottom=290
  769. -- title width / last selected line: 0
  770. -- icon id / first selected line: 0 / 0
  771. -- text alignment: 1
  772. -- font id: 0
  773. -- text size: 12
  774. -- style flags: 0
  775. -- line height: 16
  776. -- part name: 
  777.  
  778.  
  779. -- part 48 (button)
  780. -- low flags: 00
  781. -- high flags: 8000
  782. -- rect: left=293 top=142 right=159 bottom=310
  783. -- title width / last selected line: 0
  784. -- icon id / first selected line: 0 / 0
  785. -- text alignment: 1
  786. -- font id: 0
  787. -- text size: 12
  788. -- style flags: 0
  789. -- line height: 16
  790. -- part name: 1
  791.  
  792.  
  793. -- part 49 (button)
  794. -- low flags: 00
  795. -- high flags: 8000
  796. -- rect: left=313 top=142 right=159 bottom=330
  797. -- title width / last selected line: 0
  798. -- icon id / first selected line: 0 / 0
  799. -- text alignment: 1
  800. -- font id: 0
  801. -- text size: 12
  802. -- style flags: 0
  803. -- line height: 16
  804. -- part name: 2
  805.  
  806.  
  807. -- part 50 (button)
  808. -- low flags: 00
  809. -- high flags: 8000
  810. -- rect: left=193 top=162 right=179 bottom=210
  811. -- title width / last selected line: 0
  812. -- icon id / first selected line: 0 / 0
  813. -- text alignment: 1
  814. -- font id: 0
  815. -- text size: 12
  816. -- style flags: 0
  817. -- line height: 16
  818. -- part name: 3
  819.  
  820.  
  821. -- part 51 (button)
  822. -- low flags: 00
  823. -- high flags: 8000
  824. -- rect: left=213 top=162 right=179 bottom=230
  825. -- title width / last selected line: 0
  826. -- icon id / first selected line: 0 / 0
  827. -- text alignment: 1
  828. -- font id: 0
  829. -- text size: 12
  830. -- style flags: 0
  831. -- line height: 16
  832. -- part name: 4
  833.  
  834.  
  835. -- part 52 (button)
  836. -- low flags: 00
  837. -- high flags: 8000
  838. -- rect: left=233 top=162 right=179 bottom=250
  839. -- title width / last selected line: 0
  840. -- icon id / first selected line: 0 / 0
  841. -- text alignment: 1
  842. -- font id: 0
  843. -- text size: 12
  844. -- style flags: 0
  845. -- line height: 16
  846. -- part name: 5
  847.  
  848.  
  849. -- part 53 (button)
  850. -- low flags: 00
  851. -- high flags: 8000
  852. -- rect: left=253 top=162 right=179 bottom=270
  853. -- title width / last selected line: 0
  854. -- icon id / first selected line: 0 / 0
  855. -- text alignment: 1
  856. -- font id: 0
  857. -- text size: 12
  858. -- style flags: 0
  859. -- line height: 16
  860. -- part name: 6
  861.  
  862.  
  863. -- part 54 (button)
  864. -- low flags: 00
  865. -- high flags: 8000
  866. -- rect: left=273 top=162 right=179 bottom=290
  867. -- title width / last selected line: 0
  868. -- icon id / first selected line: 0 / 0
  869. -- text alignment: 1
  870. -- font id: 0
  871. -- text size: 12
  872. -- style flags: 0
  873. -- line height: 16
  874. -- part name: 7
  875.  
  876.  
  877. -- part 55 (button)
  878. -- low flags: 00
  879. -- high flags: 8000
  880. -- rect: left=293 top=162 right=179 bottom=310
  881. -- title width / last selected line: 0
  882. -- icon id / first selected line: 0 / 0
  883. -- text alignment: 1
  884. -- font id: 0
  885. -- text size: 12
  886. -- style flags: 0
  887. -- line height: 16
  888. -- part name: 8
  889.  
  890.  
  891. -- part 56 (button)
  892. -- low flags: 00
  893. -- high flags: 8000
  894. -- rect: left=313 top=162 right=179 bottom=330
  895. -- title width / last selected line: 0
  896. -- icon id / first selected line: 0 / 0
  897. -- text alignment: 1
  898. -- font id: 0
  899. -- text size: 12
  900. -- style flags: 0
  901. -- line height: 16
  902. -- part name: 9
  903.  
  904.  
  905. -- part 57 (button)
  906. -- low flags: 00
  907. -- high flags: 8000
  908. -- rect: left=193 top=182 right=199 bottom=210
  909. -- title width / last selected line: 0
  910. -- icon id / first selected line: 0 / 0
  911. -- text alignment: 1
  912. -- font id: 0
  913. -- text size: 12
  914. -- style flags: 0
  915. -- line height: 16
  916. -- part name: 10
  917.  
  918.  
  919. -- part 58 (button)
  920. -- low flags: 00
  921. -- high flags: 8000
  922. -- rect: left=213 top=182 right=199 bottom=230
  923. -- title width / last selected line: 0
  924. -- icon id / first selected line: 0 / 0
  925. -- text alignment: 1
  926. -- font id: 0
  927. -- text size: 12
  928. -- style flags: 0
  929. -- line height: 16
  930. -- part name: 11
  931.  
  932.  
  933. -- part 59 (button)
  934. -- low flags: 00
  935. -- high flags: 8000
  936. -- rect: left=233 top=182 right=199 bottom=250
  937. -- title width / last selected line: 0
  938. -- icon id / first selected line: 0 / 0
  939. -- text alignment: 1
  940. -- font id: 0
  941. -- text size: 12
  942. -- style flags: 0
  943. -- line height: 16
  944. -- part name: 12
  945.  
  946.  
  947. -- part 60 (button)
  948. -- low flags: 00
  949. -- high flags: 8000
  950. -- rect: left=253 top=182 right=199 bottom=270
  951. -- title width / last selected line: 0
  952. -- icon id / first selected line: 0 / 0
  953. -- text alignment: 1
  954. -- font id: 0
  955. -- text size: 12
  956. -- style flags: 0
  957. -- line height: 16
  958. -- part name: 13
  959.  
  960.  
  961. -- part 61 (button)
  962. -- low flags: 00
  963. -- high flags: 8000
  964. -- rect: left=273 top=182 right=199 bottom=290
  965. -- title width / last selected line: 0
  966. -- icon id / first selected line: 0 / 0
  967. -- text alignment: 1
  968. -- font id: 0
  969. -- text size: 12
  970. -- style flags: 0
  971. -- line height: 16
  972. -- part name: 14
  973.  
  974.  
  975. -- part 62 (button)
  976. -- low flags: 00
  977. -- high flags: 8000
  978. -- rect: left=293 top=182 right=199 bottom=310
  979. -- title width / last selected line: 0
  980. -- icon id / first selected line: 0 / 0
  981. -- text alignment: 1
  982. -- font id: 0
  983. -- text size: 12
  984. -- style flags: 0
  985. -- line height: 16
  986. -- part name: 15
  987.  
  988.  
  989. -- part 63 (button)
  990. -- low flags: 00
  991. -- high flags: 8000
  992. -- rect: left=313 top=182 right=199 bottom=330
  993. -- title width / last selected line: 0
  994. -- icon id / first selected line: 0 / 0
  995. -- text alignment: 1
  996. -- font id: 0
  997. -- text size: 12
  998. -- style flags: 0
  999. -- line height: 16
  1000. -- part name: 16
  1001.  
  1002.  
  1003. -- part 64 (button)
  1004. -- low flags: 00
  1005. -- high flags: 8000
  1006. -- rect: left=193 top=202 right=219 bottom=210
  1007. -- title width / last selected line: 0
  1008. -- icon id / first selected line: 0 / 0
  1009. -- text alignment: 1
  1010. -- font id: 0
  1011. -- text size: 12
  1012. -- style flags: 0
  1013. -- line height: 16
  1014. -- part name: 17
  1015.  
  1016.  
  1017. -- part 65 (button)
  1018. -- low flags: 00
  1019. -- high flags: 8000
  1020. -- rect: left=213 top=202 right=219 bottom=230
  1021. -- title width / last selected line: 0
  1022. -- icon id / first selected line: 0 / 0
  1023. -- text alignment: 1
  1024. -- font id: 0
  1025. -- text size: 12
  1026. -- style flags: 0
  1027. -- line height: 16
  1028. -- part name: 18
  1029.  
  1030.  
  1031. -- part 66 (button)
  1032. -- low flags: 00
  1033. -- high flags: 8000
  1034. -- rect: left=233 top=202 right=219 bottom=250
  1035. -- title width / last selected line: 0
  1036. -- icon id / first selected line: 0 / 0
  1037. -- text alignment: 1
  1038. -- font id: 0
  1039. -- text size: 12
  1040. -- style flags: 0
  1041. -- line height: 16
  1042. -- part name: 19
  1043.  
  1044.  
  1045. -- part 67 (button)
  1046. -- low flags: 00
  1047. -- high flags: 8000
  1048. -- rect: left=253 top=202 right=219 bottom=270
  1049. -- title width / last selected line: 0
  1050. -- icon id / first selected line: 0 / 0
  1051. -- text alignment: 1
  1052. -- font id: 0
  1053. -- text size: 12
  1054. -- style flags: 0
  1055. -- line height: 16
  1056. -- part name: 20
  1057.  
  1058.  
  1059. -- part 68 (button)
  1060. -- low flags: 00
  1061. -- high flags: 8000
  1062. -- rect: left=273 top=202 right=219 bottom=290
  1063. -- title width / last selected line: 0
  1064. -- icon id / first selected line: 0 / 0
  1065. -- text alignment: 1
  1066. -- font id: 0
  1067. -- text size: 12
  1068. -- style flags: 0
  1069. -- line height: 16
  1070. -- part name: 21
  1071.  
  1072.  
  1073. -- part 69 (button)
  1074. -- low flags: 00
  1075. -- high flags: 8000
  1076. -- rect: left=293 top=202 right=219 bottom=310
  1077. -- title width / last selected line: 0
  1078. -- icon id / first selected line: 0 / 0
  1079. -- text alignment: 1
  1080. -- font id: 0
  1081. -- text size: 12
  1082. -- style flags: 0
  1083. -- line height: 16
  1084. -- part name: 22
  1085.  
  1086.  
  1087. -- part 70 (button)
  1088. -- low flags: 00
  1089. -- high flags: 8000
  1090. -- rect: left=313 top=202 right=219 bottom=330
  1091. -- title width / last selected line: 0
  1092. -- icon id / first selected line: 0 / 0
  1093. -- text alignment: 1
  1094. -- font id: 0
  1095. -- text size: 12
  1096. -- style flags: 0
  1097. -- line height: 16
  1098. -- part name: 23
  1099.  
  1100.  
  1101. -- part 71 (button)
  1102. -- low flags: 00
  1103. -- high flags: 8000
  1104. -- rect: left=193 top=222 right=239 bottom=210
  1105. -- title width / last selected line: 0
  1106. -- icon id / first selected line: 0 / 0
  1107. -- text alignment: 1
  1108. -- font id: 0
  1109. -- text size: 12
  1110. -- style flags: 0
  1111. -- line height: 16
  1112. -- part name: 24
  1113.  
  1114.  
  1115. -- part 72 (button)
  1116. -- low flags: 00
  1117. -- high flags: 8000
  1118. -- rect: left=213 top=222 right=239 bottom=230
  1119. -- title width / last selected line: 0
  1120. -- icon id / first selected line: 0 / 0
  1121. -- text alignment: 1
  1122. -- font id: 0
  1123. -- text size: 12
  1124. -- style flags: 0
  1125. -- line height: 16
  1126. -- part name: 25
  1127.  
  1128.  
  1129. -- part 73 (button)
  1130. -- low flags: 00
  1131. -- high flags: 8000
  1132. -- rect: left=233 top=222 right=239 bottom=250
  1133. -- title width / last selected line: 0
  1134. -- icon id / first selected line: 0 / 0
  1135. -- text alignment: 1
  1136. -- font id: 0
  1137. -- text size: 12
  1138. -- style flags: 0
  1139. -- line height: 16
  1140. -- part name: 26
  1141.  
  1142.  
  1143. -- part 74 (button)
  1144. -- low flags: 00
  1145. -- high flags: 8000
  1146. -- rect: left=253 top=222 right=239 bottom=270
  1147. -- title width / last selected line: 0
  1148. -- icon id / first selected line: 0 / 0
  1149. -- text alignment: 1
  1150. -- font id: 0
  1151. -- text size: 12
  1152. -- style flags: 0
  1153. -- line height: 16
  1154. -- part name: 27
  1155.  
  1156.  
  1157. -- part 75 (button)
  1158. -- low flags: 00
  1159. -- high flags: 8000
  1160. -- rect: left=273 top=222 right=239 bottom=290
  1161. -- title width / last selected line: 0
  1162. -- icon id / first selected line: 0 / 0
  1163. -- text alignment: 1
  1164. -- font id: 0
  1165. -- text size: 12
  1166. -- style flags: 0
  1167. -- line height: 16
  1168. -- part name: 28
  1169.  
  1170.  
  1171. -- part 76 (button)
  1172. -- low flags: 00
  1173. -- high flags: 8000
  1174. -- rect: left=293 top=222 right=239 bottom=310
  1175. -- title width / last selected line: 0
  1176. -- icon id / first selected line: 0 / 0
  1177. -- text alignment: 1
  1178. -- font id: 0
  1179. -- text size: 12
  1180. -- style flags: 0
  1181. -- line height: 16
  1182. -- part name: 29
  1183.  
  1184.  
  1185. -- part 77 (button)
  1186. -- low flags: 00
  1187. -- high flags: 8000
  1188. -- rect: left=313 top=222 right=239 bottom=330
  1189. -- title width / last selected line: 0
  1190. -- icon id / first selected line: 0 / 0
  1191. -- text alignment: 1
  1192. -- font id: 0
  1193. -- text size: 12
  1194. -- style flags: 0
  1195. -- line height: 16
  1196. -- part name: 30
  1197.  
  1198.  
  1199. -- part 78 (button)
  1200. -- low flags: 00
  1201. -- high flags: 8000
  1202. -- rect: left=193 top=242 right=259 bottom=210
  1203. -- title width / last selected line: 0
  1204. -- icon id / first selected line: 0 / 0
  1205. -- text alignment: 1
  1206. -- font id: 0
  1207. -- text size: 12
  1208. -- style flags: 0
  1209. -- line height: 16
  1210. -- part name: 
  1211.  
  1212.  
  1213. -- part 79 (button)
  1214. -- low flags: 00
  1215. -- high flags: 8000
  1216. -- rect: left=213 top=242 right=259 bottom=230
  1217. -- title width / last selected line: 0
  1218. -- icon id / first selected line: 0 / 0
  1219. -- text alignment: 1
  1220. -- font id: 0
  1221. -- text size: 12
  1222. -- style flags: 0
  1223. -- line height: 16
  1224. -- part name: 
  1225.  
  1226.  
  1227. -- part 80 (button)
  1228. -- low flags: 00
  1229. -- high flags: 8000
  1230. -- rect: left=233 top=242 right=259 bottom=250
  1231. -- title width / last selected line: 0
  1232. -- icon id / first selected line: 0 / 0
  1233. -- text alignment: 1
  1234. -- font id: 0
  1235. -- text size: 12
  1236. -- style flags: 0
  1237. -- line height: 16
  1238. -- part name: 
  1239.  
  1240.  
  1241. -- part 81 (button)
  1242. -- low flags: 00
  1243. -- high flags: 8000
  1244. -- rect: left=253 top=242 right=259 bottom=270
  1245. -- title width / last selected line: 0
  1246. -- icon id / first selected line: 0 / 0
  1247. -- text alignment: 1
  1248. -- font id: 0
  1249. -- text size: 12
  1250. -- style flags: 0
  1251. -- line height: 16
  1252. -- part name: 
  1253.  
  1254.  
  1255. -- part 82 (button)
  1256. -- low flags: 00
  1257. -- high flags: 8000
  1258. -- rect: left=273 top=242 right=259 bottom=290
  1259. -- title width / last selected line: 0
  1260. -- icon id / first selected line: 0 / 0
  1261. -- text alignment: 1
  1262. -- font id: 0
  1263. -- text size: 12
  1264. -- style flags: 0
  1265. -- line height: 16
  1266. -- part name: 
  1267.  
  1268.  
  1269. -- part 83 (button)
  1270. -- low flags: 00
  1271. -- high flags: 8000
  1272. -- rect: left=293 top=242 right=259 bottom=310
  1273. -- title width / last selected line: 0
  1274. -- icon id / first selected line: 0 / 0
  1275. -- text alignment: 1
  1276. -- font id: 0
  1277. -- text size: 12
  1278. -- style flags: 0
  1279. -- line height: 16
  1280. -- part name: 
  1281.  
  1282.  
  1283. -- part 84 (button)
  1284. -- low flags: 00
  1285. -- high flags: 8000
  1286. -- rect: left=313 top=242 right=259 bottom=330
  1287. -- title width / last selected line: 0
  1288. -- icon id / first selected line: 0 / 0
  1289. -- text alignment: 1
  1290. -- font id: 0
  1291. -- text size: 12
  1292. -- style flags: 0
  1293. -- line height: 16
  1294. -- part name: 
  1295.  
  1296.  
  1297. -- part 85 (button)
  1298. -- low flags: 00
  1299. -- high flags: 8000
  1300. -- rect: left=334 top=142 right=159 bottom=351
  1301. -- title width / last selected line: 0
  1302. -- icon id / first selected line: 0 / 0
  1303. -- text alignment: 1
  1304. -- font id: 0
  1305. -- text size: 12
  1306. -- style flags: 0
  1307. -- line height: 16
  1308. -- part name: 1
  1309.  
  1310.  
  1311. -- part 86 (button)
  1312. -- low flags: 00
  1313. -- high flags: 8000
  1314. -- rect: left=354 top=142 right=159 bottom=371
  1315. -- title width / last selected line: 0
  1316. -- icon id / first selected line: 0 / 0
  1317. -- text alignment: 1
  1318. -- font id: 0
  1319. -- text size: 12
  1320. -- style flags: 0
  1321. -- line height: 16
  1322. -- part name: 2
  1323.  
  1324.  
  1325. -- part 87 (button)
  1326. -- low flags: 00
  1327. -- high flags: 8000
  1328. -- rect: left=374 top=142 right=159 bottom=391
  1329. -- title width / last selected line: 0
  1330. -- icon id / first selected line: 0 / 0
  1331. -- text alignment: 1
  1332. -- font id: 0
  1333. -- text size: 12
  1334. -- style flags: 0
  1335. -- line height: 16
  1336. -- part name: 3
  1337.  
  1338.  
  1339. -- part 88 (button)
  1340. -- low flags: 00
  1341. -- high flags: 8000
  1342. -- rect: left=394 top=142 right=159 bottom=411
  1343. -- title width / last selected line: 0
  1344. -- icon id / first selected line: 0 / 0
  1345. -- text alignment: 1
  1346. -- font id: 0
  1347. -- text size: 12
  1348. -- style flags: 0
  1349. -- line height: 16
  1350. -- part name: 4
  1351.  
  1352.  
  1353. -- part 89 (button)
  1354. -- low flags: 00
  1355. -- high flags: 8000
  1356. -- rect: left=414 top=142 right=159 bottom=431
  1357. -- title width / last selected line: 0
  1358. -- icon id / first selected line: 0 / 0
  1359. -- text alignment: 1
  1360. -- font id: 0
  1361. -- text size: 12
  1362. -- style flags: 0
  1363. -- line height: 16
  1364. -- part name: 5
  1365.  
  1366.  
  1367. -- part 90 (button)
  1368. -- low flags: 00
  1369. -- high flags: 8000
  1370. -- rect: left=434 top=142 right=159 bottom=451
  1371. -- title width / last selected line: 0
  1372. -- icon id / first selected line: 0 / 0
  1373. -- text alignment: 1
  1374. -- font id: 0
  1375. -- text size: 12
  1376. -- style flags: 0
  1377. -- line height: 16
  1378. -- part name: 6
  1379.  
  1380.  
  1381. -- part 91 (button)
  1382. -- low flags: 00
  1383. -- high flags: 8000
  1384. -- rect: left=454 top=142 right=159 bottom=471
  1385. -- title width / last selected line: 0
  1386. -- icon id / first selected line: 0 / 0
  1387. -- text alignment: 1
  1388. -- font id: 0
  1389. -- text size: 12
  1390. -- style flags: 0
  1391. -- line height: 16
  1392. -- part name: 7
  1393.  
  1394.  
  1395. -- part 92 (button)
  1396. -- low flags: 00
  1397. -- high flags: 8000
  1398. -- rect: left=334 top=162 right=179 bottom=351
  1399. -- title width / last selected line: 0
  1400. -- icon id / first selected line: 0 / 0
  1401. -- text alignment: 1
  1402. -- font id: 0
  1403. -- text size: 12
  1404. -- style flags: 0
  1405. -- line height: 16
  1406. -- part name: 8
  1407.  
  1408.  
  1409. -- part 93 (button)
  1410. -- low flags: 00
  1411. -- high flags: 8000
  1412. -- rect: left=354 top=162 right=179 bottom=371
  1413. -- title width / last selected line: 0
  1414. -- icon id / first selected line: 0 / 0
  1415. -- text alignment: 1
  1416. -- font id: 0
  1417. -- text size: 12
  1418. -- style flags: 0
  1419. -- line height: 16
  1420. -- part name: 9
  1421.  
  1422.  
  1423. -- part 94 (button)
  1424. -- low flags: 00
  1425. -- high flags: 8000
  1426. -- rect: left=374 top=162 right=179 bottom=391
  1427. -- title width / last selected line: 0
  1428. -- icon id / first selected line: 0 / 0
  1429. -- text alignment: 1
  1430. -- font id: 0
  1431. -- text size: 12
  1432. -- style flags: 0
  1433. -- line height: 16
  1434. -- part name: 10
  1435.  
  1436.  
  1437. -- part 95 (button)
  1438. -- low flags: 00
  1439. -- high flags: 8000
  1440. -- rect: left=394 top=162 right=179 bottom=411
  1441. -- title width / last selected line: 0
  1442. -- icon id / first selected line: 0 / 0
  1443. -- text alignment: 1
  1444. -- font id: 0
  1445. -- text size: 12
  1446. -- style flags: 0
  1447. -- line height: 16
  1448. -- part name: 11
  1449.  
  1450.  
  1451. -- part 96 (button)
  1452. -- low flags: 00
  1453. -- high flags: 8000
  1454. -- rect: left=414 top=162 right=179 bottom=431
  1455. -- title width / last selected line: 0
  1456. -- icon id / first selected line: 0 / 0
  1457. -- text alignment: 1
  1458. -- font id: 0
  1459. -- text size: 12
  1460. -- style flags: 0
  1461. -- line height: 16
  1462. -- part name: 12
  1463.  
  1464.  
  1465. -- part 97 (button)
  1466. -- low flags: 00
  1467. -- high flags: 8000
  1468. -- rect: left=434 top=162 right=179 bottom=451
  1469. -- title width / last selected line: 0
  1470. -- icon id / first selected line: 0 / 0
  1471. -- text alignment: 1
  1472. -- font id: 0
  1473. -- text size: 12
  1474. -- style flags: 0
  1475. -- line height: 16
  1476. -- part name: 13
  1477.  
  1478.  
  1479. -- part 98 (button)
  1480. -- low flags: 00
  1481. -- high flags: 8000
  1482. -- rect: left=454 top=162 right=179 bottom=471
  1483. -- title width / last selected line: 0
  1484. -- icon id / first selected line: 0 / 0
  1485. -- text alignment: 1
  1486. -- font id: 0
  1487. -- text size: 12
  1488. -- style flags: 0
  1489. -- line height: 16
  1490. -- part name: 14
  1491.  
  1492.  
  1493. -- part 99 (button)
  1494. -- low flags: 00
  1495. -- high flags: 8000
  1496. -- rect: left=334 top=182 right=199 bottom=351
  1497. -- title width / last selected line: 0
  1498. -- icon id / first selected line: 0 / 0
  1499. -- text alignment: 1
  1500. -- font id: 0
  1501. -- text size: 12
  1502. -- style flags: 0
  1503. -- line height: 16
  1504. -- part name: 15
  1505.  
  1506.  
  1507. -- part 100 (button)
  1508. -- low flags: 00
  1509. -- high flags: 8000
  1510. -- rect: left=354 top=182 right=199 bottom=371
  1511. -- title width / last selected line: 0
  1512. -- icon id / first selected line: 0 / 0
  1513. -- text alignment: 1
  1514. -- font id: 0
  1515. -- text size: 12
  1516. -- style flags: 0
  1517. -- line height: 16
  1518. -- part name: 16
  1519.  
  1520.  
  1521. -- part 101 (button)
  1522. -- low flags: 00
  1523. -- high flags: 8000
  1524. -- rect: left=374 top=182 right=199 bottom=391
  1525. -- title width / last selected line: 0
  1526. -- icon id / first selected line: 0 / 0
  1527. -- text alignment: 1
  1528. -- font id: 0
  1529. -- text size: 12
  1530. -- style flags: 0
  1531. -- line height: 16
  1532. -- part name: 17
  1533.  
  1534.  
  1535. -- part 102 (button)
  1536. -- low flags: 00
  1537. -- high flags: 8000
  1538. -- rect: left=394 top=182 right=199 bottom=411
  1539. -- title width / last selected line: 0
  1540. -- icon id / first selected line: 0 / 0
  1541. -- text alignment: 1
  1542. -- font id: 0
  1543. -- text size: 12
  1544. -- style flags: 0
  1545. -- line height: 16
  1546. -- part name: 18
  1547.  
  1548.  
  1549. -- part 103 (button)
  1550. -- low flags: 00
  1551. -- high flags: 8000
  1552. -- rect: left=414 top=182 right=199 bottom=431
  1553. -- title width / last selected line: 0
  1554. -- icon id / first selected line: 0 / 0
  1555. -- text alignment: 1
  1556. -- font id: 0
  1557. -- text size: 12
  1558. -- style flags: 0
  1559. -- line height: 16
  1560. -- part name: 19
  1561.  
  1562.  
  1563. -- part 104 (button)
  1564. -- low flags: 00
  1565. -- high flags: 8000
  1566. -- rect: left=434 top=182 right=199 bottom=451
  1567. -- title width / last selected line: 0
  1568. -- icon id / first selected line: 0 / 0
  1569. -- text alignment: 1
  1570. -- font id: 0
  1571. -- text size: 12
  1572. -- style flags: 0
  1573. -- line height: 16
  1574. -- part name: 20
  1575.  
  1576.  
  1577. -- part 105 (button)
  1578. -- low flags: 00
  1579. -- high flags: 8000
  1580. -- rect: left=454 top=182 right=199 bottom=471
  1581. -- title width / last selected line: 0
  1582. -- icon id / first selected line: 0 / 0
  1583. -- text alignment: 1
  1584. -- font id: 0
  1585. -- text size: 12
  1586. -- style flags: 0
  1587. -- line height: 16
  1588. -- part name: 21
  1589.  
  1590.  
  1591. -- part 106 (button)
  1592. -- low flags: 00
  1593. -- high flags: 8000
  1594. -- rect: left=334 top=202 right=219 bottom=351
  1595. -- title width / last selected line: 0
  1596. -- icon id / first selected line: 0 / 0
  1597. -- text alignment: 1
  1598. -- font id: 0
  1599. -- text size: 12
  1600. -- style flags: 0
  1601. -- line height: 16
  1602. -- part name: 22
  1603.  
  1604.  
  1605. -- part 107 (button)
  1606. -- low flags: 00
  1607. -- high flags: 8000
  1608. -- rect: left=354 top=202 right=219 bottom=371
  1609. -- title width / last selected line: 0
  1610. -- icon id / first selected line: 0 / 0
  1611. -- text alignment: 1
  1612. -- font id: 0
  1613. -- text size: 12
  1614. -- style flags: 0
  1615. -- line height: 16
  1616. -- part name: 23
  1617.  
  1618.  
  1619. -- part 108 (button)
  1620. -- low flags: 00
  1621. -- high flags: 8000
  1622. -- rect: left=374 top=202 right=219 bottom=391
  1623. -- title width / last selected line: 0
  1624. -- icon id / first selected line: 0 / 0
  1625. -- text alignment: 1
  1626. -- font id: 0
  1627. -- text size: 12
  1628. -- style flags: 0
  1629. -- line height: 16
  1630. -- part name: 24
  1631.  
  1632.  
  1633. -- part 109 (button)
  1634. -- low flags: 00
  1635. -- high flags: 8000
  1636. -- rect: left=394 top=202 right=219 bottom=411
  1637. -- title width / last selected line: 0
  1638. -- icon id / first selected line: 0 / 0
  1639. -- text alignment: 1
  1640. -- font id: 0
  1641. -- text size: 12
  1642. -- style flags: 0
  1643. -- line height: 16
  1644. -- part name: 25
  1645.  
  1646.  
  1647. -- part 110 (button)
  1648. -- low flags: 00
  1649. -- high flags: 8000
  1650. -- rect: left=414 top=202 right=219 bottom=431
  1651. -- title width / last selected line: 0
  1652. -- icon id / first selected line: 0 / 0
  1653. -- text alignment: 1
  1654. -- font id: 0
  1655. -- text size: 12
  1656. -- style flags: 0
  1657. -- line height: 16
  1658. -- part name: 26
  1659.  
  1660.  
  1661. -- part 111 (button)
  1662. -- low flags: 00
  1663. -- high flags: 8000
  1664. -- rect: left=434 top=202 right=219 bottom=451
  1665. -- title width / last selected line: 0
  1666. -- icon id / first selected line: 0 / 0
  1667. -- text alignment: 1
  1668. -- font id: 0
  1669. -- text size: 12
  1670. -- style flags: 0
  1671. -- line height: 16
  1672. -- part name: 27
  1673.  
  1674.  
  1675. -- part 112 (button)
  1676. -- low flags: 00
  1677. -- high flags: 8000
  1678. -- rect: left=454 top=202 right=219 bottom=471
  1679. -- title width / last selected line: 0
  1680. -- icon id / first selected line: 0 / 0
  1681. -- text alignment: 1
  1682. -- font id: 0
  1683. -- text size: 12
  1684. -- style flags: 0
  1685. -- line height: 16
  1686. -- part name: 28
  1687.  
  1688.  
  1689. -- part 113 (button)
  1690. -- low flags: 00
  1691. -- high flags: 8000
  1692. -- rect: left=334 top=222 right=239 bottom=351
  1693. -- title width / last selected line: 0
  1694. -- icon id / first selected line: 0 / 0
  1695. -- text alignment: 1
  1696. -- font id: 0
  1697. -- text size: 12
  1698. -- style flags: 0
  1699. -- line height: 16
  1700. -- part name: 29
  1701.  
  1702.  
  1703. -- part 114 (button)
  1704. -- low flags: 00
  1705. -- high flags: 8000
  1706. -- rect: left=354 top=222 right=239 bottom=371
  1707. -- title width / last selected line: 0
  1708. -- icon id / first selected line: 0 / 0
  1709. -- text alignment: 1
  1710. -- font id: 0
  1711. -- text size: 12
  1712. -- style flags: 0
  1713. -- line height: 16
  1714. -- part name: 30
  1715.  
  1716.  
  1717. -- part 115 (button)
  1718. -- low flags: 00
  1719. -- high flags: 8000
  1720. -- rect: left=374 top=222 right=239 bottom=391
  1721. -- title width / last selected line: 0
  1722. -- icon id / first selected line: 0 / 0
  1723. -- text alignment: 1
  1724. -- font id: 0
  1725. -- text size: 12
  1726. -- style flags: 0
  1727. -- line height: 16
  1728. -- part name: 31
  1729.  
  1730.  
  1731. -- part 116 (button)
  1732. -- low flags: 00
  1733. -- high flags: 8000
  1734. -- rect: left=394 top=222 right=239 bottom=411
  1735. -- title width / last selected line: 0
  1736. -- icon id / first selected line: 0 / 0
  1737. -- text alignment: 1
  1738. -- font id: 0
  1739. -- text size: 12
  1740. -- style flags: 0
  1741. -- line height: 16
  1742. -- part name: 
  1743.  
  1744.  
  1745. -- part 117 (button)
  1746. -- low flags: 00
  1747. -- high flags: 8000
  1748. -- rect: left=414 top=222 right=239 bottom=431
  1749. -- title width / last selected line: 0
  1750. -- icon id / first selected line: 0 / 0
  1751. -- text alignment: 1
  1752. -- font id: 0
  1753. -- text size: 12
  1754. -- style flags: 0
  1755. -- line height: 16
  1756. -- part name: 
  1757.  
  1758.  
  1759. -- part 118 (button)
  1760. -- low flags: 00
  1761. -- high flags: 8000
  1762. -- rect: left=434 top=222 right=239 bottom=451
  1763. -- title width / last selected line: 0
  1764. -- icon id / first selected line: 0 / 0
  1765. -- text alignment: 1
  1766. -- font id: 0
  1767. -- text size: 12
  1768. -- style flags: 0
  1769. -- line height: 16
  1770. -- part name: 
  1771.  
  1772.  
  1773. -- part 119 (button)
  1774. -- low flags: 00
  1775. -- high flags: 8000
  1776. -- rect: left=454 top=222 right=239 bottom=471
  1777. -- title width / last selected line: 0
  1778. -- icon id / first selected line: 0 / 0
  1779. -- text alignment: 1
  1780. -- font id: 0
  1781. -- text size: 12
  1782. -- style flags: 0
  1783. -- line height: 16
  1784. -- part name: 
  1785.  
  1786.  
  1787. -- part 120 (button)
  1788. -- low flags: 00
  1789. -- high flags: 8000
  1790. -- rect: left=334 top=242 right=259 bottom=351
  1791. -- title width / last selected line: 0
  1792. -- icon id / first selected line: 0 / 0
  1793. -- text alignment: 1
  1794. -- font id: 0
  1795. -- text size: 12
  1796. -- style flags: 0
  1797. -- line height: 16
  1798. -- part name: 
  1799.  
  1800.  
  1801. -- part 121 (button)
  1802. -- low flags: 00
  1803. -- high flags: 8000
  1804. -- rect: left=354 top=242 right=259 bottom=371
  1805. -- title width / last selected line: 0
  1806. -- icon id / first selected line: 0 / 0
  1807. -- text alignment: 1
  1808. -- font id: 0
  1809. -- text size: 12
  1810. -- style flags: 0
  1811. -- line height: 16
  1812. -- part name: 
  1813.  
  1814.  
  1815. -- part 122 (button)
  1816. -- low flags: 00
  1817. -- high flags: 8000
  1818. -- rect: left=374 top=242 right=259 bottom=391
  1819. -- title width / last selected line: 0
  1820. -- icon id / first selected line: 0 / 0
  1821. -- text alignment: 1
  1822. -- font id: 0
  1823. -- text size: 12
  1824. -- style flags: 0
  1825. -- line height: 16
  1826. -- part name: 
  1827.  
  1828.  
  1829. -- part 123 (button)
  1830. -- low flags: 00
  1831. -- high flags: 8000
  1832. -- rect: left=394 top=242 right=259 bottom=411
  1833. -- title width / last selected line: 0
  1834. -- icon id / first selected line: 0 / 0
  1835. -- text alignment: 1
  1836. -- font id: 0
  1837. -- text size: 12
  1838. -- style flags: 0
  1839. -- line height: 16
  1840. -- part name: 
  1841.  
  1842.  
  1843. -- part 124 (button)
  1844. -- low flags: 00
  1845. -- high flags: 8000
  1846. -- rect: left=414 top=242 right=259 bottom=431
  1847. -- title width / last selected line: 0
  1848. -- icon id / first selected line: 0 / 0
  1849. -- text alignment: 1
  1850. -- font id: 0
  1851. -- text size: 12
  1852. -- style flags: 0
  1853. -- line height: 16
  1854. -- part name: 
  1855.  
  1856.  
  1857. -- part 125 (button)
  1858. -- low flags: 00
  1859. -- high flags: 8000
  1860. -- rect: left=434 top=242 right=259 bottom=451
  1861. -- title width / last selected line: 0
  1862. -- icon id / first selected line: 0 / 0
  1863. -- text alignment: 1
  1864. -- font id: 0
  1865. -- text size: 12
  1866. -- style flags: 0
  1867. -- line height: 16
  1868. -- part name: 
  1869.  
  1870.  
  1871. -- part 126 (button)
  1872. -- low flags: 00
  1873. -- high flags: 8000
  1874. -- rect: left=454 top=242 right=259 bottom=471
  1875. -- title width / last selected line: 0
  1876. -- icon id / first selected line: 0 / 0
  1877. -- text alignment: 1
  1878. -- font id: 0
  1879. -- text size: 12
  1880. -- style flags: 0
  1881. -- line height: 16
  1882. -- part name: 
  1883.  
  1884.  
  1885. -- part 127 (button)
  1886. -- low flags: 00
  1887. -- high flags: 4000
  1888. -- rect: left=273 top=162 right=179 bottom=290
  1889. -- title width / last selected line: 0
  1890. -- icon id / first selected line: 0 / 0
  1891. -- text alignment: 1
  1892. -- font id: 0
  1893. -- text size: 12
  1894. -- style flags: 0
  1895. -- line height: 16
  1896. -- part name: Hilite
  1897.  
  1898.  
  1899. -- part 129 (button)
  1900. -- low flags: 00
  1901. -- high flags: 2000
  1902. -- rect: left=50 top=260 right=276 bottom=67
  1903. -- title width / last selected line: 0
  1904. -- icon id / first selected line: 5056 / 5056
  1905. -- text alignment: 1
  1906. -- font id: 0
  1907. -- text size: 12
  1908. -- style flags: 0
  1909. -- line height: 16
  1910. -- part name: Scroll Left
  1911. ----- HyperTalk script -----
  1912. on mouseUp
  1913.   get the loc of background button "Thumb"
  1914.   if item 1 of it > 76 then
  1915.     subtract 17 from item 1 of it
  1916.   end if
  1917.   set the loc of background button "Thumb" to it
  1918.   drawCalendar -1
  1919. end mouseUp
  1920.  
  1921.  
  1922.  
  1923. -- part 130 (button)
  1924. -- low flags: 00
  1925. -- high flags: 2000
  1926. -- rect: left=442 top=260 right=276 bottom=458
  1927. -- title width / last selected line: 0
  1928. -- icon id / first selected line: 5057 / 5057
  1929. -- text alignment: 1
  1930. -- font id: 0
  1931. -- text size: 12
  1932. -- style flags: 0
  1933. -- line height: 16
  1934. -- part name: Scroll Right
  1935. ----- HyperTalk script -----
  1936. on mouseUp
  1937.   get the loc of background button "Thumb"
  1938.   if item 1 of it < 433 then
  1939.     add 17 to item 1 of it
  1940.   end if
  1941.   set the loc of background button "Thumb" to it
  1942.   drawCalendar 1
  1943. end mouseUp
  1944.  
  1945.  
  1946.  
  1947. -- part 131 (button)
  1948. -- low flags: 00
  1949. -- high flags: 0000
  1950. -- rect: left=67 top=260 right=276 bottom=442
  1951. -- title width / last selected line: 0
  1952. -- icon id / first selected line: 0 / 0
  1953. -- text alignment: 1
  1954. -- font id: 0
  1955. -- text size: 12
  1956. -- style flags: 0
  1957. -- line height: 16
  1958. -- part name: Scroll Bar
  1959. ----- HyperTalk script -----
  1960. on mouseUp
  1961.   get the loc of background button "Thumb"
  1962.   if the clickH > item 1 of it then
  1963.     if item 1 of it < 399 then
  1964.       add 51 to item 1 of it
  1965.       set the loc of background button "Thumb" to it
  1966.       drawCalendar 3
  1967.     else if item 1 of it < 416 then
  1968.       add 34 to item 1 of it
  1969.       set the loc of background button "Thumb" to it
  1970.       drawCalendar 2
  1971.     else if item 1 of it < 433 then
  1972.       add 17 to item 1 of it
  1973.       set the loc of background button "Thumb" to it
  1974.       drawCalendar 1
  1975.     end if
  1976.   else
  1977.     if item 1 of it > 110 then
  1978.       subtract 51 from item 1 of it
  1979.       set the loc of background button "Thumb" to it
  1980.       drawCalendar -3
  1981.     else if item 1 of it > 93 then
  1982.       subtract 34 from item 1 of it
  1983.       set the loc of background button "Thumb" to it
  1984.       drawCalendar -2
  1985.     else if item 1 of it > 76 then
  1986.       subtract 17 from item 1 of it
  1987.       set the loc of background button "Thumb" to it
  1988.       drawCalendar -1
  1989.     end if
  1990.   end if
  1991. end mouseUp
  1992.  
  1993.  
  1994.  
  1995. -- part 132 (field)
  1996. -- low flags: 01
  1997. -- high flags: 0000
  1998. -- rect: left=51 top=101 right=120 bottom=190
  1999. -- title width / last selected line: 0
  2000. -- icon id / first selected line: 0 / 0
  2001. -- text alignment: 1
  2002. -- font id: 0
  2003. -- text size: 12
  2004. -- style flags: 0
  2005. -- line height: 18
  2006. -- part name: 
  2007.  
  2008.  
  2009. -- part 133 (field)
  2010. -- low flags: 01
  2011. -- high flags: 0000
  2012. -- rect: left=192 top=101 right=120 bottom=331
  2013. -- title width / last selected line: 0
  2014. -- icon id / first selected line: 0 / 0
  2015. -- text alignment: 1
  2016. -- font id: 0
  2017. -- text size: 12
  2018. -- style flags: 0
  2019. -- line height: 18
  2020. -- part name: 
  2021.  
  2022.  
  2023. -- part 134 (field)
  2024. -- low flags: 01
  2025. -- high flags: 0000
  2026. -- rect: left=333 top=101 right=120 bottom=472
  2027. -- title width / last selected line: 0
  2028. -- icon id / first selected line: 0 / 0
  2029. -- text alignment: 1
  2030. -- font id: 0
  2031. -- text size: 12
  2032. -- style flags: 0
  2033. -- line height: 18
  2034. -- part name: 
  2035.  
  2036.  
  2037. -- part 135 (field)
  2038. -- low flags: 81
  2039. -- high flags: 0000
  2040. -- rect: left=363 top=80 right=99 bottom=472
  2041. -- title width / last selected line: 0
  2042. -- icon id / first selected line: 0 / 0
  2043. -- text alignment: 1
  2044. -- font id: 0
  2045. -- text size: 12
  2046. -- style flags: 0
  2047. -- line height: 18
  2048. -- part name: Display Date
  2049.  
  2050.  
  2051. -- part 128 (button)
  2052. -- low flags: 00
  2053. -- high flags: 0002
  2054. -- rect: left=340 top=261 right=275 bottom=356
  2055. -- title width / last selected line: 0
  2056. -- icon id / first selected line: 0 / 0
  2057. -- text alignment: 1
  2058. -- font id: 0
  2059. -- text size: 12
  2060. -- style flags: 0
  2061. -- line height: 16
  2062. -- part name: Thumb
  2063.